summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/fsa/fs_i_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/fsa/fs_i_file.h')
-rw-r--r--src/core/file_sys/fsa/fs_i_file.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/file_sys/fsa/fs_i_file.h b/src/core/file_sys/fsa/fs_i_file.h
index 8fdd71c80..1188ae8ca 100644
--- a/src/core/file_sys/fsa/fs_i_file.h
+++ b/src/core/file_sys/fsa/fs_i_file.h
@@ -125,10 +125,8 @@ protected:
private:
Result DoRead(size_t* out, s64 offset, void* buffer, size_t size, const ReadOption& option) {
- std::vector<u8> output = backend->ReadBytes(size, offset);
-
- *out = output.size();
- std::memcpy(buffer, output.data(), size);
+ const auto read_size = backend->Read(static_cast<u8*>(buffer), size, offset);
+ *out = read_size;
R_SUCCEED();
}